home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / et / et3_0-a1.lha / et3 / src / PttyConnection.C < prev    next >
C/C++ Source or Header  |  1992-04-27  |  886b  |  77 lines

  1. #ifdef __GNUG__
  2. #pragma implementation
  3. #endif
  4.  
  5. #include "PttyConnection.h"
  6.  
  7. //---- PttyConnection ----------------------------------------------------------
  8.  
  9. PttyConnection::PttyConnection()
  10. {
  11. }
  12.  
  13. PttyConnection::~PttyConnection()
  14. {
  15. }
  16.  
  17. FILE *PttyConnection::GetFile()
  18. {
  19.     return 0;
  20. }
  21.  
  22. int PttyConnection::GetPid()
  23. {
  24.     return -1;
  25. }
  26.  
  27. int PttyConnection::GetFileNo()
  28. {
  29.     return -1;
  30. }
  31.  
  32. bool PttyConnection::SubmitToSlave(char*, int)
  33. {
  34.     return FALSE;
  35. }
  36.  
  37. int PttyConnection::Read(char*, int)
  38. {
  39.     return -1;
  40. }
  41.  
  42. int PttyConnection::GetMode()
  43. {
  44.     return 0;
  45. }
  46.  
  47. void PttyConnection::KillChild()
  48. {
  49. }
  50.  
  51. void PttyConnection::CleanupPtty()
  52. {
  53. }
  54.  
  55. bool PttyConnection::Echo()
  56. {
  57.     return FALSE;
  58. }
  59.  
  60. bool PttyConnection::RawOrCBreak()
  61. {
  62.     return FALSE;
  63. }
  64.  
  65. void PttyConnection::BecomeConsole()
  66. {
  67. }
  68.  
  69. void PttyConnection::SetSize(int,int)
  70. {
  71. }
  72.  
  73. void PttyConnection::GetPttyChars(PttyChars*)
  74. {
  75. }
  76.  
  77.